* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #0a192f;
            --secondary: #dfb429; /* Gold color */
            --accent: #ff6b6b;
            --glass: rgba(48, 41, 6, 0.27);
            --glass-header:rgba(255, 255, 254, 0.45);
            --glass-border: rgba(255, 255, 255, 0.1);
            --text: #eef2f7;;
            --gold-light: #f9e076;
            --gold-medium: #d4af37;
            --gold-dark: #b8860b;
            --dark-bg: #121212;
            --light-bg: #ffffff;
        }

        body {
            /* font-family: 'Montserrat', sans-serif; */
              font-family: 'Playfair Display', serif;
            color: var(--dark);
            background-color:  rgba(252, 246, 197, 0.7);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
          
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}
        /* Glass Morphism Styles */
        .glass {
            background: var(--glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            /* border: 1px solid var(--glass-border); */
            border-radius: 0px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }

        .glass:hover {
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
            border-color: rgba(212, 175, 55, 0.4);
        }

        /* Gold decorative elements */
        .gold-divider {
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold-medium), transparent);
            margin: 20px 0;
            border-radius: 2px;
        }

.container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
/* button */
        .btn {
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            border: 2px solid var(--secondary);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--secondary);
              border: 2px solid var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
  /* Hero Section */
        .hero {
            background:linear-gradient(rgba(27, 25, 2, 0.7), var(--glass)), url('../images/visionary-beginnings.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            text-align: center;
            position: relative;
            height: 100vh;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
      
        .hero h1 {
             /* font-size: 2.7rem; */
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(to right, var(--gold-light), var(--gold-medium));
            -webkit-background-clip: text;
            background-clip: text;
            color: var(--secondary);
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.5px;
            margin-top: 1.3em;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
    
        /* WhatsApp Widget Styles */
        .whatsapp-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        
        .whatsapp-bubble {
            background-color: #fff;
            border-radius: 24px;
            padding: 12px 20px;
            margin-bottom: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: relative;
            max-width: 220px;
            opacity: 1;
            transition: opacity 0.8s ease, transform 0.5s ease;
            transform: translateY(0);
            animation: floatBubble 3s ease-in-out infinite;
        }
        
        .whatsapp-bubble.hidden {
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
        }
        
        .whatsapp-bubble:after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 30px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #fff;
        }
        
        .whatsapp-bubble p {
            color: #333;
            font-weight: 500;
            font-size: 15px;
            margin: 0;
        }
        
        .whatsapp-bubble p i {
            color: #25D366;
            margin-right: 5px;
        }
        
        .whatsapp-button-widget {
            background-color: #25D366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
             overflow: visible !important;
        }
        
        .whatsapp-button-widget:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
        }
        
        .whatsapp-button-widget:active {
            transform: scale(0.95);
        }
        
        .whatsapp-button-widget i {
            color: white;
            font-size: 32px;
        }
        
        .whatsapp-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            z-index: -1;
           animation: whatsapp-pulse-fix 2s infinite !important;
    background-color: #25D366 !important;
    opacity: 0.7 !important;
        }
        
        /* .first-visit-message {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 500;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1001;
            transform: translateX(0);
            transition: transform 0.5s ease, opacity 0.5s ease;
        }
        
        .first-visit-message.hidden {
            transform: translateX(150%);
            opacity: 0;
        } */
        
        @keyframes floatBubble {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
     

        /* FIX FOR WHATSAPP PULSE */

@keyframes whatsapp-pulse-fix {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
        /* Responsive design */
        @media (max-width: 768px) {
            .whatsapp-widget {
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-bubble {
                max-width: 180px;
                font-size: 14px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .whatsapp-widget {
                bottom: 15px;
                right: 15px;
            }
            
            .whatsapp-button {
                width: 55px;
                height: 55px;
            }
            
            .whatsapp-button i {
                font-size: 28px;
            }
            
            .whatsapp-bubble {
                padding: 10px 15px;
                max-width: 160px;
            }
        } 
        /* Section Styling */
        section {
            padding: 5rem 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        
        .section-header h2 {
            /* font-size: 2.5rem; */
            margin-bottom: 1rem;
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
               font-family: 'Playfair Display', serif;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        
        .section-header p {
            color: var(--gray);
            max-width: 700px;
            margin: 2rem auto 0;
            font-size: 1.1rem;
        }
        
        /* Card Styling */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
   
        }
        
        .card {
            background-color: var(--card-bg);
            border-radius: 12px;
           box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .card-header {
            padding: 1.5rem;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .card-body {
            padding: 1.5rem;
        }
        
        /* Construction Site Section */
        .site-section {
          background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
        }
        
        .site-feature {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
           box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .site-feature h3{
               color: var(--secondary);
                
        }
        
        .site-feature i {
            font-size: 2.5rem;
            color: var(--secondary);
            min-width: 80px;
            text-align: center;
            margin-right: 1.5rem;
        }
        @media(max-width:768px){
            .site-feature {
            display: block;
            align-items: center;
            text-align: center;
        }
        }
        /* Quality Assurance */
        .quality-assurance{
            background: white;

        }
        .quality-card {
            text-align: center;
            padding: 2rem;

        }
        
        .quality-card i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }
        .quality-card h3{
          color: var(--primary);  
        }
        /* Sustainability */
        .sustainability {
            background: linear-gradient(to bottom, #fcf6c5b3, var(--glass));
        }
        
        .eco-feature {
            display: flex;
            margin-bottom: 2rem;
            align-items: flex-start;
              background-color: rgba(168, 125, 30, 0.09);
              padding:1em 0em;
              padding-left: 1.5em;
        }
        
        .eco-feature i {
            font-size: 1.8rem;
            color: var(--secondary);
            min-width: 60px;
            margin-top: 5px;
        }
        .eco-feature h3{
              color: var(--secondary);
        }
         @media(max-width:768px){
             .eco-feature {
            display: block;
            align-items: center;
            text-align: center;
            padding: 1.6em;
              /* padding-left: 0em; */
        }
        }
        /* Project Portfolio */
        /* ---------- Video Portfolio Cards ---------- */
.portfolio-section {
    background: #ffffff;
    padding: 5rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0e2b0;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.card-media {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .card-media img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .play-overlay {
    opacity: 1;
}

.play-btn-card {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f9e076, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transition: transform 0.2s ease;
}

.play-btn-card i {
    font-size: 1.8rem;
    color: #fff;
    margin-left: 4px;
}

.play-btn-card:hover {
    transform: scale(1.1);
}

.card-info {
    padding: 1.5rem;
}

.card-info h3 {
    color: #2d2a1c;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.card-info p {
    color: #5a4f3a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---------- Lightbox Modal (same as before) ---------- */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 29, 29, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #d4af37;
}

.dailymotion-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}

#dailymotion-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.close-lightbox:hover {
    background: #d4af37;
    color: #000;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    .card-media {
        height: 180px;
    }
    .play-btn-card {
        width: 50px;
        height: 50px;
    }
    .play-btn-card i {
        font-size: 1.4rem;
    }
    .play-overlay{
        opacity: 1;
    }
}
/*  */
/* ---------- Image Gallery ---------- */
/* ===== NEW ELEGANT PROJECT SNAPSHOTS SECTION ===== */
.elegant-snapshots-section {
    padding: 6rem 0;
    background-color: #ffffff;
    position: relative;
}

.blue-heading {
    color: var(--primary) !important;
    font-family: 'Playfair Display', serif;
}

.elegant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Elegant Cards */
.elegant-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(223, 180, 41, 0.2); /* Soft gold border */
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.elegant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(223, 180, 41, 0.15);
    border-color: var(--secondary);
}

.elegant-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.elegant-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.elegant-card:hover .elegant-card-img img {
    transform: scale(1.08);
}

/* Hover Overlay */
.elegant-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(3px);
}

.elegant-card:hover .elegant-card-overlay {
    opacity: 1;
}

.view-gallery-btn {
    background: linear-gradient(135deg, var(--gold-medium), var(--secondary));
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.elegant-card:hover .view-gallery-btn {
    transform: translateY(0);
}

.elegant-card-info {
    padding: 1.8rem;
    text-align: center;
    background: #ffffff;
    border-top: 3px solid var(--secondary);
}

.elegant-card-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.elegant-card-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
/* Snapshot Image Count Badge */
.snap-count-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-medium); /* Deep Blue */
    color: var(--primary); /* Gold */
    border: 1px solid var(--secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.elegant-card:hover .snap-count-badge {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.1);
}
/* ===== NEW ELEGANT MODAL ===== */
.elegant-snap-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.98);
    /* Increase this to be higher than your main site header */
    z-index: 9999; 
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.elegant-modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 1100px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--secondary);
    max-height: 90vh;
    animation: fadeIn 0.4s ease-out;
}

.elegant-modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2.5rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 20;
    line-height: 1;
    transition: all 0.3s ease;
    background: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.elegant-modal-close:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.elegant-modal-layout {
    display: flex;
    height: 100%;
    min-height: 500px;
}

/* Left side: Slider */
.elegant-modal-slider {
    width: 55%;
    background: #fdfaf0; /* Very light gold tint */
    position: relative;
    border-right: 1px solid rgba(223, 180, 41, 0.2);
}

.snap-swiper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden; /* Add this line */
    position: relative; /* Add this line */
}

.snap-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.snap-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.slide-caption-elegant {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(223, 180, 41, 0.3);
    border: 1px solid var(--secondary);
}

/* Swiper custom controls */
.snap-pagination .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}
.snap-pagination .swiper-pagination-bullet-active {
    background: var(--secondary);
    opacity: 1;
}
.snap-nav-btn {
    color: var(--secondary) !important;
    background: #ffffff;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.snap-nav-btn::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

/* Right side: Info */
.elegant-modal-info {
    width: 45%;
    padding: 3rem 2.5rem;
    background: #ffffff;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.elegant-modal-badge {
    display: inline-block;
    background: rgba(223, 180, 41, 0.15);
    color: var(--gold-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    width: fit-content;
}

.elegant-modal-info h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.gold-divider-small {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    margin-bottom: 20px;
}

.elegant-modal-desc {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.elegant-modal-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elegant-modal-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 500;
}

.elegant-modal-features i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-right: 12px;
}

/* Responsive Modal */
@media (max-width: 992px) {
    .elegant-modal-layout {
        flex-direction: column;
    }
    .elegant-modal-slider {
        width: 100%;
        height: 40vh;
        min-height: 300px;
        border-right: none;
        border-bottom: 1px solid rgba(223, 180, 41, 0.2);
    }
    .elegant-modal-info {
        width: 100%;
        padding: 2rem;
    }
}
/* ===== ELEGANT SNAPSHOTS MODAL – MOBILE OVERRIDES ===== */
@media (max-width: 768px) {
    /* Make the whole modal scrollable */
    .elegant-snap-modal .elegant-modal-content {
        display: flex !important;
        flex-direction: column !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
        background:transparent !important;
    }

    /* Stack slider above info */
    .elegant-snap-modal .elegant-modal-layout {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 1 auto !important;
        min-height: 0 !important; /* essential for scrolling */
    }

    /* Fixed-height slider with clear bottom border */
    .elegant-snap-modal .elegant-modal-slider {
        position: relative !important;
        width: 100% !important;
        height: 40vh !important;
        min-height: 280px !important;
        flex-shrink: 0 !important;
        border-bottom: 3px solid var(--secondary) !important;
        margin-bottom: 0 !important;
    }

    /* Swiper fills the slider */
    .elegant-snap-modal .snap-swiper {
        width: 100% !important;
        height: 100% !important;
    }

    /* All slides have the same height */
    .elegant-snap-modal .snap-swiper .swiper-slide {
        height: 80% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #fff !important;
    }

    /* Images: same height, white background, no cropping */
    .elegant-snap-modal .snap-swiper .swiper-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;  /* shows whole image, white bars if needed */
        object-position: center !important;
        
    }

    /* Pagination dots – overlaid on image */
    .elegant-snap-modal .snap-pagination {
        position: absolute !important;
        bottom: 150px !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 20 !important;
        text-align: center !important;
    }
    .elegant-snap-modal .snap-pagination .swiper-pagination-bullet {
        background: rgba(255,255,255,0.9) !important;
        opacity: 0.8 !important;
        width: 8px !important;
        height: 8px !important;
        margin: 0 4px !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    }
    .elegant-snap-modal .snap-pagination .swiper-pagination-bullet-active {
        background: var(--secondary) !important;
        opacity: 1 !important;
    }

    /* Slide caption – above dots */
    .elegant-snap-modal .slide-caption-elegant {
        position: absolute !important;
        bottom: 35px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: rgba(255,255,255,0.95) !important;
        color: var(--primary) !important;
        padding: 5px 15px !important;
        font-size: 0.8rem !important;
        border-radius: 30px !important;
        white-space: nowrap !important;
        max-width: 90% !important;
        text-overflow: ellipsis !important;
        overflow: hidden !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
        z-index: 25 !important;
    }

    /* Info section – full width, with top padding to separate from slider */
    .elegant-snap-modal .elegant-modal-info {
        width: 100% !important;
        padding: 2rem 1.5rem 1.5rem !important; /* top padding creates clear gap */
        overflow-y: visible !important;
        flex: 1 1 auto !important;
        background: #fff !important;
    }

    /* Title at the top */
    .elegant-snap-modal .elegant-modal-info h3 {
        margin-top: 0 !important;
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    .elegant-snap-modal .elegant-modal-badge {
        margin-bottom: 10px !important;
    }
    .elegant-snap-modal .gold-divider-small {
        margin-bottom: 15px !important;
    }
    .elegant-snap-modal .elegant-modal-desc {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }

    /* Close button – always accessible */
    .elegant-snap-modal .elegant-modal-close {
        top: 8px !important;
        right: 12px !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 2rem !important;
        background: rgba(255,255,255,0.9) !important;
        border-radius: 50% !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
        z-index: 30 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}
        /* Craftsmanship */
        .craftsmanship-section {
            background: url('https://images.unsplash.com/photo-1517646287270-a5a9ca602e5c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            background-attachment: fixed;
            position: relative;
            color: white;
        }
        
        .craftsmanship-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
        }
        
        .craftsmanship-content {
            position: relative;
            z-index: 2;
        }
        
        .craftsmanship-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .craft-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .craft-item i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }
        
        /* Project Journey */
        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        
        .timeline-item {
            padding: 20px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            padding: 20px;
            background-color: white;
            position: relative;
            border-radius:12px;
             box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .timeline-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .timeline-icon {
            position: absolute;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            top: 20px;
            z-index: 1;
        }
        
        .timeline-item:nth-child(odd) .timeline-icon {
            right: -75px;
        }
        
        .timeline-item:nth-child(even) .timeline-icon {
            left: -75px;
        }
        
        /* Architectural Gallery */
        /* --- Architectural Portfolio Styling --- */
.arch-design-section { background: #ffffff; padding: 80px 0; }

.arch-category-card {
    position: relative;
    background: #fdfaf0;
    border: 1px solid rgba(223, 180, 41, 0.2);
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    min-height: 350px;
}

.arch-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgb(238, 238, 237);
    color: var(--primary);
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.arch-main-img img, .arch-sub-grid img, .arch-flex-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.arch-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.arch-flex-row {
    display: flex;
    height: 300px;
}
.arch-flex-row img { width: 33.33%; border-right: 1px solid white; }

.arch-info-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 15px;
    text-align: center;
    transition: bottom 0.4s ease;
}

.arch-category-card:hover .arch-info-overlay { bottom: 0; }
.arch-category-card:hover img { transform: scale(1.05); }

/* Modal Customization */
.arch-modal-wide { max-width: 1200px !important; }
.arch-modal-body { display: flex; height: 100%; }
.arch-modal-gallery { width: 65%; background: #eee; }
.arch-modal-text { width: 35%; padding: 40px; }

@media (max-width: 992px) {
    .arch-modal-body { flex-direction: column; }
    .arch-modal-gallery, .arch-modal-text { width: 100%; }
    .arch-flex-row { height: auto; flex-direction: column; }
    .arch-flex-row img { width: 100%; }
}

.close-arch {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
    z-index: 100;
}
        /* 1. Style the Description Icons */
.arch-features-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.arch-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--primary); /* Navy text */
}

.arch-features-list li i {
    color: var(--secondary); /* Gold icons */
    font-size: 1.2rem;
    margin-right: 15px;
    width: 25px; /* Ensures vertical alignment */
    text-align: center;
}

/* 2. Force Images to Fill Width/Height */
.arch-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000; /* Black background for any letterboxing */
}

.arch-swiper .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* This makes sure the image covers the full space without stretching */
}

/* 3. Fix Navigation Buttons (Gold instead of Blue) */
.arch-swiper .swiper-button-next,
.arch-swiper .swiper-button-prev {
    color: var(--secondary) !important; /* Gold Arrows */
}

.arch-swiper .swiper-button-next::after,
.arch-swiper .swiper-button-prev::after {
    font-size: 1.5rem; /* Slightly smaller, more elegant arrows */
    font-weight: bold;
}

/* Fix Pagination Dots (Gold) */
.arch-swiper .swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.7;
}

.arch-swiper .swiper-pagination-bullet-active {
    background: var(--secondary) !important; /* Gold active dot */
    opacity: 1;
}

/* Extra: Modal Backdrop Glass Effect */
.elegant-snap-modal {
    background: rgba(10, 25, 47, 0.9) !important; /* Deep Navy transparent */
    backdrop-filter: blur(8px);
}
/* --- Architectural Modal Fixes --- */

/* 1. Icon Styling */
.arch-features-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.arch-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
}

.arch-features-list li i {
    color: var(--secondary) !important; /* Gold Icons */
    font-size: 1.2rem;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

/* 2. Equal Height Image Fix */
.arch-modal-gallery {
    width: 65%;
    background: #000;
    height: 500px; /* Set a fixed height for the desktop view */
    position: relative;
}

.arch-swiper {
    width: 100%;
    height: 100%; /* Force swiper to fill the 500px height */
}

.arch-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.arch-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Forces image to fill the height without stretching */
    object-position: center;
}

/* 3. Navigation Aesthetic Fixes */
.arch-swiper .swiper-button-next,
.arch-swiper .swiper-button-prev {
    color: var(--secondary) !important; /* Gold Arrows */
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.arch-swiper .swiper-button-next::after,
.arch-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.arch-swiper .swiper-pagination-bullet-active {
    background: var(--secondary) !important;
}

/* Responsive height adjustment */
@media (max-width: 992px) {
    .arch-modal-gallery {
        height: 350px; /* Shorter height for mobile */
        width: 100%;
    }
}
@media (max-width: 768px) {

   .arch-info-overlay {
    bottom: 0px;
   
}
  .arch-info-overlay:hover {
  color: var(--primary);
 transition: ease-in .3s;
   
}
.arch-modal-body{
    background: white;
}
.close-arch{
    color: white;

}
}

         /* Contact Section */
             /* WhatsApp CTA Section */
             .contact-section{
                 background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
             }
        .whatsapp-cta {
               background: linear-gradient(rgba(18, 18, 18, 0.35), var(--glass));
            border-radius: 15px;
            padding: 50px;
            text-align: center;
            position: relative;
             overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
 .whatsapp-cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--secondary), var(--secondary));
              border-top-left-radius: 15px;
        }
        
        .whatsapp-icon {
            font-size: 64px;
            color: #25D366 ;
            margin-bottom: 20px;
        }

        .whatsapp-cta h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: rgb(0, 0, 27);
        }
.contact-details h4 {
             color: rgb(0, 0, 27);
        }
        .whatsapp-cta p {
            max-width: 600px;
            margin: 0 auto 30px;
            /* color: var(--gray); */
            font-size: 1.1em;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
        }
   .whatsapp-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
            position: relative;
            z-index: 2;
            margin-top: 20px;
        }
        
        .whatsapp-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(18, 140, 126, 0.6);
            color: white;
            background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
        }
        
        .whatsapp-button i {
            margin-right: 12px;
            font-size: 1.4rem;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
               background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Footer */

          .footer {
             background-color:  rgba(15, 14, 0, 0.7);
            color: rgb(247, 243, 243);
            padding: 0px 0 0;
            position: relative;
            overflow: hidden;
    font-family: 'Montserrat', sans-serif;
        }
        
        /* Decorative Elements */
        .footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, var(--secondary), var(--gold-light), var(--gold-medium))
        }
        
        .contain-decor{
              background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
              padding: 2em;
              border: 10px;
        }
        /* Footer Columns */
        .footer-column {
            margin-bottom: 20px;
            padding: 1em;
        }
        
        .footer-column h3 {
            color: var(--secondary);
            color: white;
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
              font-family: 'Playfair Display', serif;
        }
        
        .footer-column h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold-medium);
        }
        
        .footer-about p {
            color: #cacaca;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        /* Social Links */
        .social-links-footer {
            display: flex;
            gap: 15px;
        }
        
        .social-links-footer a {
      
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            text-decoration: none;
        }
         .social-links-footer a:hover {
            background: #ffffff;
                 color: var(--gold-medium);
            transform: translateY(-5px);
        }
        /* Footer Lists */
        .footer-list {
            list-style: none;
            padding: 0;
        }
        
        .footer-list li {
            margin-bottom: 12px;
        }
        
        .footer-list a {
            color: #cacaca;;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 5px 0;
            position: relative;
            padding-left: 20px;
        }
        
        /* Contact Info */
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            color: #cacaca;
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer .contact-info i {
            
            color: var(--gold-medium);
            color: white;
            margin-right: 15px;
            min-width: 20px;
            margin-top: 4px;
        }
        
        /* Newsletter */
        .newsletter-section {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 0;
            margin: 40px 0;
        }
        
        .newsletter-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            justify-content: space-between;
        }
        
        .newsletter-text h4 {
              color: white;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .newsletter-text p {
          color: #cacaca;
            margin: 0;
        }
        
        .newsletter-form {
            display: flex;
            flex: 1;
            min-width: 300px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 20px;
            border: none;
           
            background: rgba(36, 31, 8, 0.5);
            color: white;
            border-radius: 4px 0 0 4px;
            outline: none;
        }
        
        .newsletter-button {
            background: linear-gradient(135deg, var(--gold-medium) 0%, var(--secondary) 100%);
            color: var(--primary);
            border: none;
            padding: 0 25px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 0 4px 4px 0;
            transition: all 0.3s ease;
        }
        
        /* Footer Bottom */
        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 0;
            text-align: center;
        }
        
        .footer-bottom-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .copyright {
              color: #cacaca;
            /* margin: 0; */
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            gap: 15px;
        }
        
        .footer-links a {
             color: #cacaca;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        /* Hover Effects */
        .footer-list a:hover,
        .footer-list a:focus {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .footer-list a::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--gold-medium);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .footer-list a:hover::before,
        .footer-list a:focus::before {
            opacity: 1;
        }
        
        .social-links a:hover {
            color: var(--gold-light);
            background: rgba(212, 175, 55, 0.2);
            transform: translateY(-3px);
        }
        
        .newsletter-button:hover {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--gold-medium) 100%);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
              /* Footer Legal Links */
.footer-legal {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-legal a {
    color: #cacaca;                /* matches other footer link color */
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 8px;
    display: inline-block;
}

.footer-legal a:hover {
    color: var(--secondary);       /* gold – #dfb429 */
}

.footer-legal .separator {
    color: #cacaca;
    opacity: 0.5;
    font-weight: 300;
    display: inline-block;
}
    /* Responsive Design */
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .newsletter-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .newsletter-form {
                width: 100%;
            }
            
            .footer-bottom-container {
                flex-direction: column;
            }
             /* .stats-container .stat-label p {
             text-align:center;

        } */
        
        }
        
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive */
      

        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
          
        }
       /* Responsive Design */
        @media (max-width: 992px) {
            .timeline::after {
                left: 31px;
                z-index: -1;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                  left: 31px;
            }
            
            .timeline-item:nth-child(odd) .timeline-icon,
            .timeline-item:nth-child(even) .timeline-icon {  
               
                position: relative;
                 left: -77px;
                right: auto;
                z-index: 100;
            }
        }   
    

